home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  397 b   |  35 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __SUBCLASS2_H
  11. #define __SUBCLASS2_H
  12.  
  13.  
  14. #include  <Object.h>
  15.  
  16. @interface SubClass2 : Object {
  17.  
  18.   char  dumb[ 24 ];
  19. }
  20.  
  21. +initialize;
  22. + newOther;
  23. - hokeyMethod;
  24. - print;
  25. - print:( const char* )aPhrase;
  26. - print:( const char* )msg1 with:( const char* )msg2;
  27. - storeOn:( int )aFd;
  28. - readFrom:( int )aFd;
  29.  
  30. @end
  31.  
  32.  
  33. #endif
  34.  
  35.